home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / dsp / dr.bub / 96000.lha / 96000 / appb / b138d.asm < prev    next >
Assembly Source File  |  1992-04-28  |  948b  |  16 lines

  1. ; This program was originally published in the Motorola DSP96002 Users Manual
  2. ; and is provided under a DISCLAIMER OF WARRANTY available from Motorola DSP
  3. ; Operation, 6501 William Cannon Drive West, Austin, Texas 78735-8598.  For
  4. ; more information, refer to the DSP96002 Users Manual, Appendix B, DSP
  5. ; Benchmarks.
  6. ;
  7. ; B.1.38.4    Unpack a 32 Bit Word Into Two Sign-extended 16 Bit Words  
  8. ;The following unpacks a 32 bit word into two 16 bit sign-extended 16 bit  words.  
  9. ;              Two 16 Bit Unpacks                            Program    ICycles 
  10. ;                                                            Words 
  11.     move              #data,d0.l    ;get data 
  12.     split  d0,d1                    ;d1=sX, d0=XY          1        1 
  13.     ext       d1                    ;d1=sY                 1        1 
  14. ;                                                          ---      --- 
  15. ;                                                  Totals:  2        2 
  16.